home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Freelog 121
/
FreelogMagazineJuilletAout2014-No121.iso
/
Outils
/
Adobe-Air
/
adobe-air_13.exe
/
[0]
/
setup.swf
/
scripts
/
components
/
OSButtonBarHBox.as
< prev
Wrap
Text File
|
2014-03-27
|
573b
|
26 lines
package components
{
import flash.display.DisplayObject;
import flash.system.Capabilities;
import mx.containers.HBox;
public class OSButtonBarHBox extends HBox
{
public function OSButtonBarHBox()
{
super();
}
override public function getChildAt(param1:int) : DisplayObject
{
if(Capabilities.os.indexOf("Mac") >= 0)
{
return super.getChildAt(numChildren - (param1 + 1));
}
return super.getChildAt(param1);
}
}
}